home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 January: Mac OS SDK / Dev.CD Jan 96 SDK / Dev.CD Jan 96 SDK1.toast / Development Kits (Disc 1) / Apple Shared Library Manager / ASLM 2.0 Licensing Disk / Sources / ASLMFileSpecs.r < prev    next >
Encoding:
Text File  |  1995-05-07  |  3.5 KB  |  146 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        ASLMFileSpecs.r
  3.  
  4.     Contains:    All source and target files specifications used by
  5.                 the ASLM Installer
  6.  
  7.     Copyright:    © 1994 by Apple Computer, Inc., all rights reserved.
  8.  
  9. */
  10.  
  11. /**********************************************************************
  12. ** "Shared Library Manager" file specs
  13. ***********************************************************************/
  14.  
  15. #if GENERATING68K
  16.     resource 'infs' (fsSrcSharedLibraryManager)
  17.     {
  18.         'INIT',    'OMGR',
  19.         0x00,        /* this allows us to put newer versions on the disk */
  20.         noSearchForFile,
  21.         TypeCrMustMatch,
  22.         SLMFolder"Shared Library Manager"
  23.     };
  24.  
  25.     resource 'intf' (fsTgtSharedLibraryManager)
  26.     {
  27.         format0
  28.         {
  29.             noSearchForFile,
  30.             TypeCrMustMatch,
  31.             'INIT',    'OMGR',
  32.             0,
  33.             "special-extn:Shared Library Manager"
  34.         };
  35.     };
  36. #endif
  37.  
  38. /**********************************************************************
  39. ** "Shared Library Manager PPC" file specs
  40. ***********************************************************************/
  41.  
  42. #if GENERATINGPOWERPC
  43.     resource 'infs' (fsSrcSharedLibraryManagerPPC)
  44.     {
  45.         'INIT',    'OMgr',
  46.         0x00,                    /* this allows us to put newer versions on the disk */
  47.         noSearchForFile,
  48.         TypeCrMustMatch,
  49.         SLMFolder"Shared Library Manager PPC"
  50.     };
  51.  
  52.     resource 'intf' (fsTgtSharedLibraryManagerPPC)
  53.     {
  54.         format0
  55.         {
  56.             noSearchForFile,
  57.             TypeCrMustMatch,
  58.             'INIT',    'OMgr',
  59.             0,
  60.             "special-extn:Shared Library Manager PPC"
  61.         };
  62.     };
  63. #endif
  64.  
  65. /**********************************************************************
  66. ** "System" file
  67. ***********************************************************************/
  68.  
  69. resource 'infs' (fsSystemFile) 
  70. {
  71.     'zsys',                        /* File Type        */ 
  72.     'MACS',                        /* File Creator        */
  73.     0x00,                        /* Creation Date    */ 
  74.     noSearchForFile,
  75.     TypeCrNeedNotMatch,
  76.     "special-macs:System"        /* path name        */
  77. };
  78.  
  79. /**********************************************************************
  80. ** "EtherTalk Phase 2" files and other EtherTalk files.
  81. ***********************************************************************/
  82.  
  83. resource 'infs' (fsSrcEtherTalkPhase2) 
  84. {
  85.     'adev',                        /* File Type        */ 
  86.     'et20',                        /* File Creator        */
  87.     0x00,                        /* Creation Date    */ 
  88.     noSearchForFile,
  89.     TypeCrNeedNotMatch,
  90.     SLMFolder"EtherTalk Phase 2"        /* path name        */
  91. };
  92.  
  93. resource 'infs' (fsTrgEtherTalkPhase2) 
  94. {
  95.     'adev',                        /* File Type        */ 
  96.     'et20',                        /* File Creator        */
  97.     0x00,                        /* Creation Date    */ 
  98.     noSearchForFile,
  99.     TypeCrNeedNotMatch,
  100.     "special-extn:EtherTalk Phase 2"        /* path name        */
  101. };
  102.  
  103. resource 'infs' (fsTrgEtherTalk) 
  104. {
  105.     'adev',                        /* File Type        */ 
  106.     'etlk',                        /* File Creator        */
  107.     0x00,                        /* Creation Date    */ 
  108.     noSearchForFile,
  109.     TypeCrMustMatch,
  110.     "special-macs:EtherTalk"        /* path name        */
  111. };
  112.  
  113. resource 'infs' (fsTrgEtherTalk2_0) 
  114. {
  115.     'adev',                        /* File Type        */ 
  116.     'et20',                        /* File Creator        */
  117.     0x00,                        /* Creation Date    */ 
  118.     noSearchForFile,
  119.     TypeCrMustMatch,
  120.     "special-macs:EtherTalk2.0"        /* path name        */
  121. };
  122.  
  123. resource 'infs' (fsTrgEtherTalk2_1) 
  124. {
  125.     'adev',                        /* File Type        */ 
  126.     'et20',                        /* File Creator        */
  127.     0x00,                        /* Creation Date    */ 
  128.     noSearchForFile,
  129.     TypeCrMustMatch,
  130.     "special-macs:EtherTalk2.1"        /* path name        */
  131. };
  132.  
  133. /**********************************************************************
  134. ** "ASLM Resources" file
  135. ***********************************************************************/
  136.  
  137. resource 'infs' (fsASLMResources) 
  138. {
  139.     'rsrc',                        /* File Type        */ 
  140.     'RSED',                        /* File Creator        */
  141.     0x00,                        /* this allows us to put newer versions on the disk */ 
  142.     noSearchForFile,
  143.     TypeCRMustMatch,
  144.     SLMFolder"ASLM Resources"    /* path name        */
  145. };
  146.